Amazon SES SMTP Sample

This is a sample that demonstrates how to send an email using SES with SMTP protocol.

Prerequisites

Running the Sample

The basic steps for running the Amazon SES SMTP sample are:

  1. Open the AmazonSesSmtpSample.sln file in Visual Studio.
  2. Open the App.config file.
  3. Enter your AWS SES SMTP User Name and Password:
    <add key="AwsSesSmtpUserName" value="<Your AWS SES SMTP User Name>"/>   
    <add key="AwsSesSmtpPassword" value="<Your AWS SES SMTP Password>"/>
  4. Save the file.
  5. Set proper values for the variables senderAddress and receiverAddress.
  6. Run the sample in Debug mode by typing F5.